home *** CD-ROM | disk | FTP | other *** search
/ Digital Pose Collection / Digital Pose Collection.iso / mac / POSE / DATA / MAIN.DXR / 00009.ls < prev    next >
Encoding:
Text File  |  1996-06-18  |  363 b   |  22 lines

  1. on mouseDown
  2.   puppetSound("click")
  3. end
  4.  
  5. on mouseUp
  6.   global gfindflg, gbackframe
  7.   cursor(4)
  8.   set the movieRate of sprite 1 to 0
  9.   if gfindflg then
  10.     set gfindflg to 0
  11.     set the visible of sprite 5 to 0
  12.     set the visible of sprite 6 to 0
  13.     cursor(0)
  14.     go(gbackframe)
  15.   else
  16.     updateStage()
  17.     clearsprite()
  18.     cursor(0)
  19.     play done
  20.   end if
  21. end
  22.